home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / poedit.prerm < prev    next >
Encoding:
Text File  |  2012-11-06  |  238 b   |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "${1}" in
  6.     remove|upgrade|deconfigure)
  7.         update-alternatives --remove poedit /usr/bin/poeditor
  8.         ;;
  9.  
  10.     failed-upgrade)
  11.  
  12.         ;;
  13.  
  14.     *)
  15.         echo "prerm called with unknown argument \`${1}'" >&2
  16.         exit 1
  17.         ;;
  18. esac
  19.  
  20.  
  21.  
  22. exit 0
  23.